home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / Pac Man white.swf / scripts / DefineButton2_147 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2006-06-13  |  189 b   |  14 lines

  1. on(press){
  2.    page -= 10;
  3.    if(page < 0)
  4.    {
  5.       page = 0;
  6.    }
  7.    if(page < 10)
  8.    {
  9.       last_btn._visible = false;
  10.    }
  11.    next_btn._visible = true;
  12.    showScores();
  13. }
  14.